home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 1999 #5 / 1999 CD 5 (black).iso / Delphi3 / install / data.z / RESXPLOR.DPR < prev    next >
Encoding:
Text File  |  1997-08-05  |  230 b   |  15 lines

  1. program ResXplor;
  2.  
  3. uses
  4.   Forms,
  5.   ExeImage,
  6.   RXMain in 'RXMain.pas' {MainForm};
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.Title := 'Resource Explorer';
  12.   Application.CreateForm(TMainForm, MainForm);
  13.   Application.Run;
  14. end.
  15.